home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / ab20_archive / utilities / emulators / unixlib.lzh / crypt.c next >
Text File  |  1991-10-19  |  418b  |  11 lines

  1. /* this file should contain a crypt algorithm, some people asked me if they
  2.  * could run AMUD for real, and not just for testing LPC, so they need crypt 
  3.  * I have a crypt algorithm, but it doesn't work :+(, so I left this file
  4.  * empty, anyone who wants to have their passwords crypted should replace
  5.  * my crypt() with another function.
  6.  *
  7.  *        Cthulu, 19-jun-91
  8.  */
  9.  
  10. char *crypt(char *pw, char *salt) { return pw; }
  11.